-
Notifications
You must be signed in to change notification settings - Fork 543
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix .NET 9 ASP.NET Blazor issues #3064
Conversation
Can you please confirm whether this changes will resolve the below issue? |
When above fix will be available ( #3064 ) Because of this error I am unable to upgrade my project to .net 9 |
This fix is now available on the preview feed:
Let me know if this fixes it and I can release. |
Yay it works for me, no more errors and rendering output looks fine. Thanks for your great work! |
Can anyone please help me understand how to access preview feed: 3.118.0-nightly.27 mentioned above. I googled it but havent found the solution. |
Like this (https://github.com/nexus-main/nexus/blob/c49e150cdce2d8bde7c43048e62348d61d8dbfcb/Directory.Build.props#L10) but with the URL |
Description of Change
The
IJSUnmarshalledObjectReference
type has been removed (and we may have only ever neededIJSInProcessObjectReference
) but we want to use the new[JSImport]
attributes.There are several changes:
[JSImport]
attributes[JSImport]
attribute does not yet support theElementReference
type, so we have to use the element ID_bl_#
(Improve the JavaScript interop code generators to support additional scenarios dotnet/runtime#78455)Module
object is no longer available, so we copy the work we did for GL and add Module and GL toSkiaSharpInterop
simd,st
to the correctst,simd
Bugs Fixed
API Changes
None.
Behavioral Changes
None.
Required skia PR
None.
PR Checklist